home *** CD-ROM | disk | FTP | other *** search
/ Aztech's Super Games / Aztech's Super Games (Aztech New Media Corp)(1994).ISO / oxyd / runme.bat < prev   
DOS Batch File  |  1994-08-23  |  519b  |  24 lines

  1. @echo off
  2. cls
  3. ECHO.
  4. ECHO.
  5. ECHO This game will self-configure itself for most VGA machines. However, 
  6. ECHO it does hang up with a few VGA video cards.
  7. ECHO.
  8. ECHO This Program may also have problems with out having EMS Memory
  9. ECHO Available
  10. ECHO.
  11. ECHO Press E for EGA or VGA with under 2 megs EMS  memory
  12. ECHO Press V for VGA with 2 megs of EMS memory
  13. ECHO Press any other key to exit.
  14. kbd EV
  15. if errorlevel=2 goto VGA
  16. if errorlevel=1 goto EGA
  17. goto exit
  18. :VGA
  19. oxyd_VGA 
  20. goto exit
  21. :EGA
  22. oxyd_EGA
  23. :exit
  24.